type google.golang.org/protobuf/internal/impl.listReflect

18 uses

	google.golang.org/protobuf/internal/impl (current package)
		convert_list.go#L35: 	return protoreflect.ValueOfList(&listReflect{pv, c.c})
		convert_list.go#L39: 	rv := v.List().(*listReflect).v
		convert_list.go#L47: 	list, ok := v.Interface().(*listReflect)
		convert_list.go#L59: 	return protoreflect.ValueOfList(&listReflect{reflect.New(c.goType), c.c})
		convert_list.go#L63: 	return protoreflect.ValueOfList(&listReflect{reflect.Zero(reflect.PtrTo(c.goType)), c.c})
		convert_list.go#L75: 	return protoreflect.ValueOfList(&listReflect{v, c.c})
		convert_list.go#L79: 	return v.List().(*listReflect).v
		convert_list.go#L83: 	list, ok := v.Interface().(*listReflect)
		convert_list.go#L102: type listReflect struct {
		convert_list.go#L107: func (ls *listReflect) Len() int {
		convert_list.go#L113: func (ls *listReflect) Get(i int) protoreflect.Value {
		convert_list.go#L116: func (ls *listReflect) Set(i int, v protoreflect.Value) {
		convert_list.go#L119: func (ls *listReflect) Append(v protoreflect.Value) {
		convert_list.go#L122: func (ls *listReflect) AppendMutable() protoreflect.Value {
		convert_list.go#L130: func (ls *listReflect) Truncate(i int) {
		convert_list.go#L133: func (ls *listReflect) NewElement() protoreflect.Value {
		convert_list.go#L136: func (ls *listReflect) IsValid() bool {
		convert_list.go#L139: func (ls *listReflect) protoUnwrap() interface{} {